home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / 5macros / test.asm < prev    next >
Encoding:
Assembly Source File  |  1986-12-22  |  950 b   |  51 lines

  1. ;
  2.                        name      test 
  3.                        page      55, 132
  4. ;
  5. ;
  6. ;              Author:     Bill Pease
  7. ;
  8. ;    directions for assembly:
  9. ;
  10. ;              masm test;
  11. ;              link test;
  12. ;              exe2bin test test.com
  13. ;              erase test.obj
  14. ;              erase test.exe
  15. ;
  16. cseg    segment
  17.         assume    cs:cseg,ds:cseg
  18.         org       100h
  19.  
  20. start:
  21.  
  22. test     proc  far
  23.  
  24.        assume    cs:cseg,ds:cseg
  25.  
  26.        if1
  27.             include macro.lib
  28.        endif
  29.  
  30.        get_video_mode    
  31.        clear_screen    
  32.        print_box 10,10,22,78,1
  33.        delay 5
  34.        print_box 2,50,10,75,3
  35.        delay 5
  36.        print_box 15,60,21,70,2
  37.        delay 5
  38.        print_box 18,20,21,30,1
  39.        delay 5
  40.        print_box 5,0,8,20,2
  41.        beep 3
  42.        
  43.        mov  ah, 4ch
  44.        int  21h
  45.              
  46. test       endp
  47.  
  48.  
  49. cseg     ends
  50.          end start               
  51.